How We Work
We specialize in helping Property Managers and Home Owners keep their AirBnB and Short Term Rentals running like clockwork.
As dedicated professionals, we take care of many issues on each property when we visit, reduce the cost of maintenance and dedicate our team to improving client satisfaction. Our response time is critical as the time between check-out and check-in on back to back stays is what keep our clients always having the best reviews.
---
import { Image } from 'astro:assets';
import corgi from '../assets/corgi.jpg';
---
// Later in your markup...
<Image src={corgi} alt="Corgi" /* ... additional props */ />
Before vs. After images: Behold the difference?
// <== On the left, the BEFORE image
<img src="/images/corgi.jpg" alt="Corgi" />
// ==> On the right, The AFTER IMAGE
<img
srcSet="/.netlify/images?url=/images/corgi.jpg&w=640&fm=webp 640w, /.netlify/images?url=/images/corgi.jpg&w=1280&fm=webp 1280w, /.netlify/images?url=/images/corgi.jpg&w=2048&fm=webp 2048w"
sizes="(max-width: 1024px) 100vw, 1024px"
alt="Corgi"
/>